From c82799415b59df401d2a66aafbb6da92a6fcc88f Mon Sep 17 00:00:00 2001 From: Erik Schnetter Date: Fri, 20 Jun 2025 15:45:40 -0400 Subject: [PATCH] Prepare release 2.11.0 (#293) * Prepare release 2.11.0 * Update soversion * Update MANIFEST --- CMakeLists.txt | 4 ++-- MANIFEST | 6 +++--- Makefile | 4 ++-- NEWS.md | 6 ++++++ utf8proc.h | 2 +- 5 files changed, 14 insertions(+), 8 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 0746227..2f259fe 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -5,13 +5,13 @@ include (utils.cmake) disallow_intree_builds() # API version - be sure to update utf8proc.h and Makefile, too! -project (utf8proc VERSION 2.10.0 LANGUAGES C) +project (utf8proc VERSION 2.11.0 LANGUAGES C) # This is the ABI version number, which may differ from the # API version number (defined in utf8proc.h and above). # Be sure to also update these in Makefile and MANIFEST! set(SO_MAJOR 3) -set(SO_MINOR 1) +set(SO_MINOR 2) set(SO_PATCH 0) option(UTF8PROC_INSTALL "Enable installation of utf8proc" On) diff --git a/MANIFEST b/MANIFEST index ba7924d..4bda19a 100644 --- a/MANIFEST +++ b/MANIFEST @@ -2,8 +2,8 @@ include/ include/utf8proc.h lib/ lib/libutf8proc.a -lib/libutf8proc.so -> libutf8proc.so.3.1.0 -lib/libutf8proc.so.2 -> libutf8proc.so.3.1.0 -lib/libutf8proc.so.3.1.0 +lib/libutf8proc.so -> libutf8proc.so.3.2.0 +lib/libutf8proc.so.2 -> libutf8proc.so.3.2.0 +lib/libutf8proc.so.3.2.0 lib/pkgconfig/ lib/pkgconfig/libutf8proc.pc diff --git a/Makefile b/Makefile index 94f76e3..ffa4d4d 100644 --- a/Makefile +++ b/Makefile @@ -23,11 +23,11 @@ SOFLAG = -Wl,-soname # The API version number is defined in utf8proc.h. # Be sure to also update these ABI versions in MANIFEST and CMakeLists.txt! MAJOR=3 -MINOR=1 +MINOR=2 PATCH=0 # api version (also in utf8proc.h and CMakeLists.txt) -VERSION=2.10.0 +VERSION=2.11.0 OS := $(shell uname) ifeq ($(OS),Darwin) # MacOS X diff --git a/NEWS.md b/NEWS.md index 9086824..2226ad5 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,5 +1,11 @@ # utf8proc release history # +## Version 2.11.0 ## + +2025-06-20 + + - Unicode 17 support ([#292]). + ## Version 2.10.0 ## 2024-12-31 diff --git a/utf8proc.h b/utf8proc.h index 039da76..7339f2e 100644 --- a/utf8proc.h +++ b/utf8proc.h @@ -71,7 +71,7 @@ /** The MAJOR version number (increased when backwards API compatibility is broken). */ #define UTF8PROC_VERSION_MAJOR 2 /** The MINOR version number (increased when new functionality is added in a backwards-compatible manner). */ -#define UTF8PROC_VERSION_MINOR 10 +#define UTF8PROC_VERSION_MINOR 11 /** The PATCH version (increased for fixes that do not change the API). */ #define UTF8PROC_VERSION_PATCH 0 /** @} */ -- 2.30.2